1. /* srmcvdec.cpp by K.Tsuru */
  2. // function ID = 88 BRADIX
  3. /***********************
  4. SRational class
  5. radix conversion
  6. SRational --> SFraction
  7. ************************/
  8. #ifndef SN_H
  9. #include "sn.h"
  10. #endif
  11. SFraction SRational::ConvToDec() const{
  12. SFraction r;
  13. r.Set(num.ConvToDec(), den.ConvToDec());//converts to SLong
  14. return r;
  15. }

srmcvdec.cpp : last modifiled at 2016/09/04 14:21:43(348 bytes)
created at 2016/06/26 15:57:35
The creation time of this html file is 2016/09/18 20:28:05 (Sun Sep 18 20:28:05 2016).